home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / autofx / cinematte.ifx < prev    next >
Text File  |  2004-08-03  |  2KB  |  60 lines

  1. /*
  2.  * CineMatte.ifx
  3.  * Written by Thomas Krehbiel
  4.  *
  5.  * AutoFX script to run the CineMatte hook.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Frame number (1 - N)
  9.  *    Word(Arg(1),2) = Main filename ("-" if not specified)
  10.  *    Word(Arg(1),3) = Swap filename ("-" if not specified)
  11.  *    Word(Arg(1),4) = Sequence number
  12.  *    Word(Arg(1),5) = Total number of frames (N)
  13.  *
  14.  * Returns:
  15.  *    0 if successful, non-zero on failure
  16.  *
  17.  */
  18.  
  19. OPTIONS RESULTS
  20.  
  21. base  = 'Autofx_CineMatte_'
  22.  
  23. framenum = Word(Arg(1),1)
  24. mainname = Word(Arg(1),2)
  25. swapname = Word(Arg(1),3)
  26. seqnum   = Word(Arg(1),4)
  27. framemax = Word(Arg(1),5)
  28.  
  29. colors = GETCLIP(base||'Colors')
  30. output = GETCLIP(base||'Output')
  31. drange = GETCLIP(base||'DRange')
  32. ForceBlack = GETCLIP(base||'ForceBlack')
  33. ForceWhite = GETCLIP(base||'ForceWhite')
  34.  
  35. SELECT
  36.  WHEN colors = 0 THEN colors = 'BlueScreen'
  37.  WHEN colors = 1 THEN colors = 'GreenScreen'
  38.  WHEN colors = 2 THEN colors = 'RedScreen'
  39.  WHEN colors = 3 THEN colors = 'CyanScreen'
  40.  WHEN colors = 4 THEN colors = 'MagentaScreen'
  41.  WHEN colors = 5 THEN colors = 'YellowScreen'
  42.  WHEN colors = 6 THEN colors = 'AutoDetectScreen'
  43.  WHEN colors = 7 THEN colors = 'DetectAnyColor'
  44. END
  45.  
  46. SELECT
  47.  WHEN output = 0 THEN output = 'OutputMatteAndKeyedFG'
  48.  WHEN output = 1 THEN output = 'OutputComposite'
  49.  WHEN output = 2 THEN output = 'OutputMatteAndComposite'
  50.  WHEN output = 3 THEN output = 'OutputMatte'
  51.  WHEN output = 4 THEN output = 'OutputKeyedFG'
  52. END
  53.  
  54. IF drange = 0 THEN drange = 'DynamicRangeOff'
  55. ELSE IF drange = 1 THEN drange = 'DynamicRange'
  56.  
  57. Hook CineMatte colors output drange ' ForceBlack ' ForceBlack ' ForceWhite ' ForceWhite
  58.  
  59. EXIT
  60.